cargo (0.6.0-2) unstable; urgency=medium
+ * Introduce a cargo-doc package
* Fails to build when wget is installed. Force curl
(Closes: #809298)
* Add the missing VCS- fields
- --
+
+ -- Sylvestre Ledru <sylvestre@debian.org> Tue, 29 Dec 2015 10:03:10 +0100
cargo (0.6.0-1) unstable; urgency=medium
rustc (>= 1.1),
binutils,
gcc | clang | c-compiler
+Suggests: cargo-doc
Description: Rust package manager
Cargo is a tool that allows Rust projects to declare their various
dependencies, and ensure that you'll always get a repeatable build.
To accomplish this goal, Cargo does four things:
* Introduces two metadata files with various bits of project information.
* Fetches and builds your project's dependencies.
- * Invokes rustc or another build tool with the correct parameters to build
+ * Invokes rustc or another build tool with the correct parameters to build
your project.
* Introduces conventions, making working with Rust projects easier.
.
Cargo downloads your Rust project’s dependencies and compiles your
project.
+
+
+Package: cargo-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, libjs-jquery
+Description: Rust package manager, documentation
+ Cargo is a tool that allows Rust projects to declare their various
+ dependencies, and ensure that you'll always get a repeatable build.
+ .
+ To accomplish this goal, Cargo does four things:
+ * Introduces two metadata files with various bits of project information.
+ * Fetches and builds your project's dependencies.
+ * Invokes rustc or another build tool with the correct parameters to build
+ your project.
+ * Introduces conventions, making working with Rust projects easier.
+ .
+ Cargo downloads your Rust project’s dependencies and compiles your
+ project.
+ .
+ This package contains the documentation.